home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{248DD890-BB45-11CF-9ABC-0080C7E7B78D}#1.0#0"; "MSWINSCK.OCX"
- Begin VB.Form Form7
- Caption = "IP Address"
- ClientHeight = 1095
- ClientLeft = 4365
- ClientTop = 3945
- ClientWidth = 3210
- LinkTopic = "Form7"
- ScaleHeight = 1095
- ScaleWidth = 3210
- Begin MSWinsockLib.Winsock Winsock1
- Left = 240
- Top = 720
- _ExtentX = 741
- _ExtentY = 741
- _Version = 393216
- End
- Begin VB.TextBox Text1
- Height = 375
- Left = 1440
- TabIndex = 2
- Top = 600
- Width = 1695
- End
- Begin VB.CommandButton Command1
- Caption = "Get IP Address"
- Height = 255
- Left = 120
- TabIndex = 0
- Top = 360
- Width = 1215
- End
- Begin VB.Label Label1
- Caption = "IP Address"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H000000FF&
- Height = 375
- Left = 1560
- TabIndex = 1
- Top = 120
- Width = 1455
- End
- Attribute VB_Name = "Form7"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Text1 = GetIPAddress()
- End Sub
-